home *** CD-ROM | disk | FTP | other *** search
/ Private: Geographic / Private: Geographic.iso / MAIN.DXR / 00016_lupa.ls < prev    next >
Encoding:
Text File  |  1998-03-23  |  319 b   |  24 lines

  1. on mouseEnter me
  2.   if the movieRate of sprite 10 = 1 then
  3.     cursor(302)
  4.   end if
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9. end
  10.  
  11. on mouseUp me
  12.   if the movieRate of sprite 10 = 1 then
  13.     go("grande")
  14.   end if
  15. end
  16.  
  17. on mouseWithin me
  18.   if the movieRate of sprite 10 = 1 then
  19.     cursor(302)
  20.   else
  21.     cursor(-1)
  22.   end if
  23. end
  24.